home *** CD-ROM | disk | FTP | other *** search
/ Windows Game Boss - 99 Games / Powersource Multimedia - Windows Game Boss 99 Games.iso / abo.pas < prev    next >
Pascal/Delphi Source File  |  1995-12-25  |  504b  |  33 lines

  1. unit Abo;
  2.  
  3. interface
  4.  
  5. uses WinTypes, WinProcs, Classes, Graphics, Forms, Controls, StdCtrls,
  6.   Buttons, ExtCtrls;
  7.  
  8. type
  9.   TAboutBox = class(TForm)
  10.     Panel1: TPanel;
  11.     OKButton: TBitBtn;
  12.     ProgramIcon: TImage;
  13.     ProductName: TLabel;
  14.     Copyright: TLabel;
  15.     Comments: TLabel;
  16.     Label1: TLabel;
  17.     Label2: TLabel;
  18.   private
  19.     { Private declarations }
  20.   public
  21.     { Public declarations }
  22.   end;
  23.  
  24. var
  25.   AboutBox: TAboutBox;
  26.  
  27. implementation
  28.  
  29. {$R *.DFM}
  30.  
  31. end.
  32.  
  33.